This forum is closed to new posts and
responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:
Try deleting the calendar profile (it will be recreated once the user reopens their mail file). Send this button to the user, have them click it, and then close and reopen their mail file. Here are the steps/code to do it:
1. Create a new mail message.
2. Select Create > Hotspot > Button.
3. Add a label for the button such as "Delete Profile".
4. Set it to Run > Client. Select "LotusScript" instead of "Formula".
5. Paste the below code accordingly as required
6. Send this email to the user having the problem, instructing the user to click the button. When user clicks the button the profile document will be deleted.
Sub Click(Source As Button) Dim session As New NotesSession Dim db As NotesDatabase Dim doc As NotesDocument Set db=session.CurrentDatabase Set doc=db.GetProfileDocument("CalendarProfile") Call doc.remove(True) Msgbox "Profile Document is Successfully Removed" End Sub
Feedback response number ALAS7L2P9W created by ~Dexter Elfreesonakoi on 11/03/2008